home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / bmdist.arc / UNIX.MK < prev    next >
Text File  |  1988-04-12  |  717b  |  38 lines

  1. #
  2. #    Makefile for Bdale's Mailer
  3. #    
  4. #    for more info see bm.doc and smtp.doc in the documentation package
  5. #    if you change the makefile, do a make clean before you do a make.
  6. #
  7.  
  8. CFLAGS= -O -DUNIX
  9.  
  10. OBJS=    main.o send.o unix.o bmutil.o version.o header.o files.o getopt.o \
  11.     ndir.o wildmat.o
  12.  
  13. SRC=    main.c send.c unix.c bmutil.c version.c header.c files.c getopt.c \
  14.     ndir.c wildmat.c
  15.  
  16. #all:    bm uuencode uudecode 
  17. all:    bm 
  18.     
  19. bm:     $(OBJS)
  20.     $(CC) $(CFLAGS) $(OBJS) -o bm $(LDFLAGS)
  21.  
  22. clean:
  23.     rm *.o
  24.  
  25. lint:
  26.     lint $(CFLAGS) $(SRC)
  27.  
  28. #
  29. # dependencies - please keep up to date!
  30. #
  31.  
  32. bmutil.o:    header.h bm.h
  33. header.o:    header.h bm.h
  34. main.o:        bm.h
  35. ndir.o:        ndir.h
  36. send.o:        bm.h
  37. unix.o:        bm.h ndir.h
  38.